home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Programming / Triton / Source / classes / object.pub1 < prev    next >
Text File  |  1998-05-23  |  422b  |  16 lines

  1. /* class_Object */
  2.  
  3. #ifndef TR_THIS_IS_TRITON
  4.   struct TROD_Object
  5.   {
  6.     struct MinNode        Node;             /* The node for linking all objects */
  7.     struct TR_Class *     Class;            /* The object's class */
  8.     struct TR_Project *   Project;          /* The object's project */
  9.  
  10.     ULONG                 Reserved[6];
  11.   };
  12. #endif
  13.  
  14. #define TROB_Object             (TRTG_CLS+0x3D) /* A root class object */
  15.  
  16.